05. AWSCLI

awscli

awscli:

In this course, you will be interacting with AWS EKS and other AWS services mostly through the command line interface. To do this, you will need to install and configure a few command line tools. The first of these is awscli which is the official AWS command line tool.

FSND C4 L2 A05 Setting Up AWSCLI

AWSCLI

Install and try awscli

  • To install in a python virtual environment run pip install awscli --upgrade , for other environments see installation instructions here .
  • Generate keys at the IAM console here .
  • Run aws configure with the keys from above to setup your profile.
  • Check that your profile is set: aws configure list .
  • For troubleshooting, have a look at the documentation here .
  • To test you installation, try listing your S3 buckets: aws s3 ls . This will show all of the S3 buckets in your account.

awscli Quiz

awscli

awscli is used to:

SOLUTION:
  • Interact with AWS services from the command line